home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
PROGRAMM
/
DB_CLIPP
/
H190.ZIP
/
VERTEX1.EXE
/
ENTRY.LNK
< prev
next >
Wrap
Text File
|
1992-09-12
|
3KB
|
95 lines
#
# Blinker 1.51 Sample Link file for Clipper 5.01
#
# This sample script is intended to be used as a template for your own scripts
#
# This script is set up a a development script, that enables incremental
# linking, and overlays EXTEND.LIB from the Nantucket libraries. When
# incremental linking is enabled, applications will use somewhat more memory
# than normal, due to a certain amount of 'padding' being left at the end
# of each Clipper procedure, but this is offset by the extremely fast
# incremental link times.
#
# Before shipping a completed application, you should disable the incremental
# linking feature, which will save memory, and increase execution speed by:
#
# a) Enabling the 5.01 Clipper paging system
# b) Remove the padding between procedures
# c) Turning on symbol table compression
#
# For final links - UN-COMMENT the following command:
#
BLINKER INCREMENTAL OFF
#BLINKER CLIPPER PROFILE ON
#
# Burn in your own Clipper variables here eg: F25;SWAPPATHC:\;
#
#BLINKER EXECUTABLE CLIPPER F25;E1024;X64;BADCACHE;
#
# Specify the EXE filename here:
#
OUTPUT ENTRY
#
# List your Clipper S'87 object modules here. The first FILE mentioned in any
# Blinker link script MUST be a Clipper code module. The first module may be
# overlaid if required.
#
#MODULE UTPROFILE
MODULE __GTMAXCOL
MODULE __GTMAXROW
MODULE UTEDPIC
MODULE __ATPROMPT
MODULE EXITSTATE
MODULE READVAR
MODULE SUBSCRIPT
MODULE _EXITSTATE
MODULE GETACTIVE
MODULE SETTLE
MODULE AFILL
MODULE BXBUTTON
#
# Uncomment and list your 3rd party non overlayable object modules here
# eg: OVERLAY's RESIDENT.OBJ
#
#FILE <3rd party1>,<3rd party2>
BEGINAREA
#
# List the rest of your Clipper code files here.
#
# FILE <next Clipper file>
#
# UNCOMMENT and list your own Clipper code libraries here
#
#
# UNCOMMENT and list your overlayable 3rd party libraries here
#
file ENTRY
ALLOCATE VERTEXUS.LIB
# ALLOCATE <3rd party>
ENDAREA
#
# UNCOMMENT and list 3rd party non-overlayable libraries here:
#
LIBRARY VERTROOT.LIB
#LIB <3rd party>
#
# If you want the 5.01 debugger UN-COMMENT the following:
# NOTE: The 5.01 debugger library MUST be specified as a FILE
#
# FILE CLD.LIB
#
# UNCOMMENT for dLESKO's FUNCky 1.5 library
#
#@FUNCKY50.LNK
#
# Call the distribution script to overlay EXTEND.LIB
#
@CL501MIN.LNK
#
# Microsoft LLIBCA C library comes last if needed
#
#LIBRARY EXTEND
#LIB VISA
#LIB LLIBCA